home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / batch / bmenu54 / printdoc.bat < prev    next >
Encoding:
DOS Batch File  |  1990-09-16  |  416 b   |  21 lines

  1. echo off
  2. REM
  3. REM  File to print or view docs
  4. REM
  5. bmenu 10 20 " Bmenu Documentation " " View Manual on Screen " " Print Manual on Printer " " Exit"
  6. if errorlevel 3 goto exit
  7. if errorlevel 2 goto print
  8. if errorlevel 1 goto view
  9. if errorlevel 0 goto exit
  10. :view
  11. cls
  12. type bmenu54.doc
  13. goto exit
  14. :print
  15. echo 
  16. echo Printing BMENU54.DOC to default printer...
  17. echo 
  18. copy bmenu54.doc prn
  19. goto exit
  20. :exit
  21.